home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / test_trace.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  21KB  |  791 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. from test import test_support
  5. import unittest
  6. import sys
  7. import difflib
  8.  
  9. def basic():
  10.     return 1
  11.  
  12. basic.events = [
  13.     (0, 'call'),
  14.     (1, 'line'),
  15.     (1, 'return')]
  16.  
  17. def arigo_example():
  18.     x = 1
  19.     del x
  20.     while 0:
  21.         pass
  22.     x = 1
  23.  
  24. arigo_example.events = [
  25.     (0, 'call'),
  26.     (1, 'line'),
  27.     (2, 'line'),
  28.     (3, 'line'),
  29.     (5, 'line'),
  30.     (5, 'return')]
  31.  
  32. def one_instr_line():
  33.     x = 1
  34.     del x
  35.     x = 1
  36.  
  37. one_instr_line.events = [
  38.     (0, 'call'),
  39.     (1, 'line'),
  40.     (2, 'line'),
  41.     (3, 'line'),
  42.     (3, 'return')]
  43.  
  44. def no_pop_tops():
  45.     x = 1
  46.     for a in range(2):
  47.         if a:
  48.             x = 1
  49.             continue
  50.         x = 1
  51.     
  52.  
  53. no_pop_tops.events = [
  54.     (0, 'call'),
  55.     (1, 'line'),
  56.     (2, 'line'),
  57.     (3, 'line'),
  58.     (6, 'line'),
  59.     (2, 'line'),
  60.     (3, 'line'),
  61.     (4, 'line'),
  62.     (2, 'line'),
  63.     (2, 'return')]
  64.  
  65. def no_pop_blocks():
  66.     while 0:
  67.         bla
  68.     x = 1
  69.  
  70. no_pop_blocks.events = [
  71.     (0, 'call'),
  72.     (1, 'line'),
  73.     (3, 'line'),
  74.     (3, 'return')]
  75.  
  76. def called():
  77.     x = 1
  78.  
  79.  
  80. def call():
  81.     called()
  82.  
  83. call.events = [
  84.     (0, 'call'),
  85.     (1, 'line'),
  86.     (-3, 'call'),
  87.     (-2, 'line'),
  88.     (-2, 'return'),
  89.     (1, 'return')]
  90.  
  91. def raises():
  92.     raise Exception
  93.  
  94.  
  95. def test_raise():
  96.     
  97.     try:
  98.         raises()
  99.     except Exception:
  100.         exc = None
  101.         x = 1
  102.  
  103.  
  104. test_raise.events = [
  105.     (0, 'call'),
  106.     (1, 'line'),
  107.     (2, 'line'),
  108.     (-3, 'call'),
  109.     (-2, 'line'),
  110.     (-2, 'exception'),
  111.     (-2, 'return'),
  112.     (2, 'exception'),
  113.     (3, 'line'),
  114.     (4, 'line'),
  115.     (4, 'return')]
  116.  
  117. def _settrace_and_return(tracefunc):
  118.     sys.settrace(tracefunc)
  119.     sys._getframe().f_back.f_trace = tracefunc
  120.  
  121.  
  122. def settrace_and_return(tracefunc):
  123.     _settrace_and_return(tracefunc)
  124.  
  125. settrace_and_return.events = [
  126.     (1, 'return')]
  127.  
  128. def _settrace_and_raise(tracefunc):
  129.     sys.settrace(tracefunc)
  130.     sys._getframe().f_back.f_trace = tracefunc
  131.     raise RuntimeError
  132.  
  133.  
  134. def settrace_and_raise(tracefunc):
  135.     
  136.     try:
  137.         _settrace_and_raise(tracefunc)
  138.     except RuntimeError:
  139.         exc = None
  140.  
  141.  
  142. settrace_and_raise.events = [
  143.     (2, 'exception'),
  144.     (3, 'line'),
  145.     (4, 'line'),
  146.     (4, 'return')]
  147.  
  148. def ireturn_example():
  149.     a = 5
  150.     b = 5
  151.     if a == b:
  152.         b = a + 1
  153.     
  154.  
  155. ireturn_example.events = [
  156.     (0, 'call'),
  157.     (1, 'line'),
  158.     (2, 'line'),
  159.     (3, 'line'),
  160.     (4, 'line'),
  161.     (4, 'return')]
  162.  
  163. def tightloop_example():
  164.     items = range(0, 3)
  165.     
  166.     try:
  167.         i = 0
  168.         while None:
  169.             b = items[i]
  170.             i += 1
  171.     except IndexError:
  172.         pass
  173.  
  174.  
  175. tightloop_example.events = [
  176.     (0, 'call'),
  177.     (1, 'line'),
  178.     (2, 'line'),
  179.     (3, 'line'),
  180.     (4, 'line'),
  181.     (5, 'line'),
  182.     (5, 'line'),
  183.     (5, 'line'),
  184.     (5, 'line'),
  185.     (5, 'exception'),
  186.     (6, 'line'),
  187.     (7, 'line'),
  188.     (7, 'return')]
  189.  
  190. def tighterloop_example():
  191.     items = range(1, 4)
  192.     
  193.     try:
  194.         i = 0
  195.         while None:
  196.             i = items[i]
  197.     except IndexError:
  198.         pass
  199.  
  200.  
  201. tighterloop_example.events = [
  202.     (0, 'call'),
  203.     (1, 'line'),
  204.     (2, 'line'),
  205.     (3, 'line'),
  206.     (4, 'line'),
  207.     (4, 'line'),
  208.     (4, 'line'),
  209.     (4, 'line'),
  210.     (4, 'exception'),
  211.     (5, 'line'),
  212.     (6, 'line'),
  213.     (6, 'return')]
  214.  
  215. class Tracer:
  216.     
  217.     def __init__(self):
  218.         self.events = []
  219.  
  220.     
  221.     def trace(self, frame, event, arg):
  222.         self.events.append((frame.f_lineno, event))
  223.         return self.trace
  224.  
  225.  
  226.  
  227. class TraceTestCase(unittest.TestCase):
  228.     
  229.     def compare_events(self, line_offset, events, expected_events):
  230.         events = [ (l - line_offset, e) for l, e in events ]
  231.  
  232.     
  233.     def run_test(self, func):
  234.         tracer = Tracer()
  235.         sys.settrace(tracer.trace)
  236.         func()
  237.         sys.settrace(None)
  238.         self.compare_events(func.func_code.co_firstlineno, tracer.events, func.events)
  239.  
  240.     
  241.     def run_test2(self, func):
  242.         tracer = Tracer()
  243.         func(tracer.trace)
  244.         sys.settrace(None)
  245.         self.compare_events(func.func_code.co_firstlineno, tracer.events, func.events)
  246.  
  247.     
  248.     def test_01_basic(self):
  249.         self.run_test(basic)
  250.  
  251.     
  252.     def test_02_arigo(self):
  253.         self.run_test(arigo_example)
  254.  
  255.     
  256.     def test_03_one_instr(self):
  257.         self.run_test(one_instr_line)
  258.  
  259.     
  260.     def test_04_no_pop_blocks(self):
  261.         self.run_test(no_pop_blocks)
  262.  
  263.     
  264.     def test_05_no_pop_tops(self):
  265.         self.run_test(no_pop_tops)
  266.  
  267.     
  268.     def test_06_call(self):
  269.         self.run_test(call)
  270.  
  271.     
  272.     def test_07_raise(self):
  273.         self.run_test(test_raise)
  274.  
  275.     
  276.     def test_08_settrace_and_return(self):
  277.         self.run_test2(settrace_and_return)
  278.  
  279.     
  280.     def test_09_settrace_and_raise(self):
  281.         self.run_test2(settrace_and_raise)
  282.  
  283.     
  284.     def test_10_ireturn(self):
  285.         self.run_test(ireturn_example)
  286.  
  287.     
  288.     def test_11_tightloop(self):
  289.         self.run_test(tightloop_example)
  290.  
  291.     
  292.     def test_12_tighterloop(self):
  293.         self.run_test(tighterloop_example)
  294.  
  295.  
  296.  
  297. class RaisingTraceFuncTestCase(unittest.TestCase):
  298.     
  299.     def trace(self, frame, event, arg):
  300.         '''A trace function that raises an exception in response to a
  301.         specific trace event.'''
  302.         if event == self.raiseOnEvent:
  303.             raise ValueError
  304.         else:
  305.             return self.trace
  306.  
  307.     
  308.     def f(self):
  309.         """The function to trace; raises an exception if that's the case
  310.         we're testing, so that the 'exception' trace event fires."""
  311.         if self.raiseOnEvent == 'exception':
  312.             x = 0
  313.             y = 1 / x
  314.         else:
  315.             return 1
  316.  
  317.     
  318.     def run_test_for_event(self, event):
  319.         '''Tests that an exception raised in response to the given event is
  320.         handled OK.'''
  321.         self.raiseOnEvent = event
  322.         
  323.         try:
  324.             for i in xrange(sys.getrecursionlimit() + 1):
  325.                 sys.settrace(self.trace)
  326.                 
  327.                 try:
  328.                     self.f()
  329.                 except ValueError:
  330.                     continue
  331.  
  332.                 self.fail('exception not thrown!')
  333.         except RuntimeError:
  334.             self.fail('recursion counter not reset')
  335.  
  336.  
  337.     
  338.     def test_call(self):
  339.         self.run_test_for_event('call')
  340.  
  341.     
  342.     def test_line(self):
  343.         self.run_test_for_event('line')
  344.  
  345.     
  346.     def test_return(self):
  347.         self.run_test_for_event('return')
  348.  
  349.     
  350.     def test_exception(self):
  351.         self.run_test_for_event('exception')
  352.  
  353.     
  354.     def test_trash_stack(self):
  355.         
  356.         def f():
  357.             for i in range(5):
  358.                 print i
  359.             
  360.  
  361.         
  362.         def g(frame, why, extra):
  363.             if why == 'line' and frame.f_lineno == f.func_code.co_firstlineno + 2:
  364.                 raise RuntimeError, 'i am crashing'
  365.             
  366.             return g
  367.  
  368.         sys.settrace(g)
  369.         
  370.         try:
  371.             f()
  372.         except RuntimeError:
  373.             import gc as gc
  374.             gc.collect()
  375.  
  376.         self.fail('exception not propagated')
  377.  
  378.  
  379.  
  380. class JumpTracer:
  381.     """Defines a trace function that jumps from one place to another,
  382.     with the source and destination lines of the jump being defined by
  383.     the 'jump' property of the function under test."""
  384.     
  385.     def __init__(self, function):
  386.         self.function = function
  387.         self.jumpFrom = function.jump[0]
  388.         self.jumpTo = function.jump[1]
  389.         self.done = False
  390.  
  391.     
  392.     def trace(self, frame, event, arg):
  393.         if not (self.done) and frame.f_code == self.function.func_code:
  394.             firstLine = frame.f_code.co_firstlineno
  395.             if frame.f_lineno == firstLine + self.jumpFrom:
  396.                 
  397.                 try:
  398.                     frame.f_lineno = firstLine + self.jumpTo
  399.                 except TypeError:
  400.                     frame.f_lineno = self.jumpTo
  401.  
  402.                 self.done = True
  403.             
  404.         
  405.         return self.trace
  406.  
  407.  
  408.  
  409. def jump_simple_forwards(output):
  410.     output.append(1)
  411.     output.append(2)
  412.     output.append(3)
  413.  
  414. jump_simple_forwards.jump = (1, 3)
  415. jump_simple_forwards.output = [
  416.     3]
  417.  
  418. def jump_simple_backwards(output):
  419.     output.append(1)
  420.     output.append(2)
  421.  
  422. jump_simple_backwards.jump = (2, 1)
  423. jump_simple_backwards.output = [
  424.     1,
  425.     1,
  426.     2]
  427.  
  428. def jump_out_of_block_forwards(output):
  429.     for i in (1, 2):
  430.         output.append(2)
  431.         for j in [
  432.             3]:
  433.             output.append(4)
  434.         
  435.     
  436.     output.append(5)
  437.  
  438. jump_out_of_block_forwards.jump = (3, 5)
  439. jump_out_of_block_forwards.output = [
  440.     2,
  441.     5]
  442.  
  443. def jump_out_of_block_backwards(output):
  444.     output.append(1)
  445.     for i in [
  446.         1]:
  447.         output.append(3)
  448.         for j in [
  449.             2]:
  450.             output.append(5)
  451.         
  452.         output.append(6)
  453.     
  454.     output.append(7)
  455.  
  456. jump_out_of_block_backwards.jump = (6, 1)
  457. jump_out_of_block_backwards.output = [
  458.     1,
  459.     3,
  460.     5,
  461.     1,
  462.     3,
  463.     5,
  464.     6,
  465.     7]
  466.  
  467. def jump_to_codeless_line(output):
  468.     output.append(1)
  469.     output.append(3)
  470.  
  471. jump_to_codeless_line.jump = (1, 2)
  472. jump_to_codeless_line.output = [
  473.     3]
  474.  
  475. def jump_to_same_line(output):
  476.     output.append(1)
  477.     output.append(2)
  478.     output.append(3)
  479.  
  480. jump_to_same_line.jump = (2, 2)
  481. jump_to_same_line.output = [
  482.     1,
  483.     2,
  484.     3]
  485.  
  486. def jump_in_nested_finally(output):
  487.     
  488.     try:
  489.         output.append(2)
  490.     finally:
  491.         output.append(4)
  492.         
  493.         try:
  494.             output.append(6)
  495.         finally:
  496.             output.append(8)
  497.  
  498.         output.append(9)
  499.  
  500.  
  501. jump_in_nested_finally.jump = (4, 9)
  502. jump_in_nested_finally.output = [
  503.     2,
  504.     9]
  505.  
  506. def no_jump_too_far_forwards(output):
  507.     
  508.     try:
  509.         output.append(2)
  510.         output.append(3)
  511.     except ValueError:
  512.         e = None
  513.         output.append('after' in str(e))
  514.  
  515.  
  516. no_jump_too_far_forwards.jump = (3, 6)
  517. no_jump_too_far_forwards.output = [
  518.     2,
  519.     True]
  520.  
  521. def no_jump_too_far_backwards(output):
  522.     
  523.     try:
  524.         output.append(2)
  525.         output.append(3)
  526.     except ValueError:
  527.         e = None
  528.         output.append('before' in str(e))
  529.  
  530.  
  531. no_jump_too_far_backwards.jump = (3, -1)
  532. no_jump_too_far_backwards.output = [
  533.     2,
  534.     True]
  535.  
  536. def no_jump_to_except_1(output):
  537.     
  538.     try:
  539.         output.append(2)
  540.     except:
  541.         e = sys.exc_info()[1]
  542.         output.append('except' in str(e))
  543.  
  544.  
  545. no_jump_to_except_1.jump = (2, 3)
  546. no_jump_to_except_1.output = [
  547.     True]
  548.  
  549. def no_jump_to_except_2(output):
  550.     
  551.     try:
  552.         output.append(2)
  553.     except ValueError:
  554.         e = sys.exc_info()[1]
  555.         output.append('except' in str(e))
  556.  
  557.  
  558. no_jump_to_except_2.jump = (2, 3)
  559. no_jump_to_except_2.output = [
  560.     True]
  561.  
  562. def no_jump_to_except_3(output):
  563.     
  564.     try:
  565.         output.append(2)
  566.     except ValueError:
  567.         e = None
  568.         output.append('except' in str(e))
  569.  
  570.  
  571. no_jump_to_except_3.jump = (2, 3)
  572. no_jump_to_except_3.output = [
  573.     True]
  574.  
  575. def no_jump_to_except_4(output):
  576.     
  577.     try:
  578.         output.append(2)
  579.     except (ValueError, RuntimeError):
  580.         e = None
  581.         output.append('except' in str(e))
  582.  
  583.  
  584. no_jump_to_except_4.jump = (2, 3)
  585. no_jump_to_except_4.output = [
  586.     True]
  587.  
  588. def no_jump_forwards_into_block(output):
  589.     
  590.     try:
  591.         output.append(2)
  592.         for i in (1, 2):
  593.             output.append(4)
  594.     except ValueError:
  595.         e = None
  596.         output.append('into' in str(e))
  597.  
  598.  
  599. no_jump_forwards_into_block.jump = (2, 4)
  600. no_jump_forwards_into_block.output = [
  601.     True]
  602.  
  603. def no_jump_backwards_into_block(output):
  604.     
  605.     try:
  606.         for i in (1, 2):
  607.             output.append(3)
  608.         
  609.         output.append(4)
  610.     except ValueError:
  611.         e = None
  612.         output.append('into' in str(e))
  613.  
  614.  
  615. no_jump_backwards_into_block.jump = (4, 3)
  616. no_jump_backwards_into_block.output = [
  617.     3,
  618.     3,
  619.     True]
  620.  
  621. def no_jump_into_finally_block(output):
  622.     
  623.     try:
  624.         
  625.         try:
  626.             output.append(3)
  627.             x = 1
  628.         finally:
  629.             output.append(6)
  630.  
  631.     except ValueError:
  632.         e = None
  633.         output.append('finally' in str(e))
  634.  
  635.  
  636. no_jump_into_finally_block.jump = (4, 6)
  637. no_jump_into_finally_block.output = [
  638.     3,
  639.     6,
  640.     True]
  641.  
  642. def no_jump_out_of_finally_block(output):
  643.     
  644.     try:
  645.         
  646.         try:
  647.             output.append(3)
  648.         finally:
  649.             output.append(5)
  650.             output.append(6)
  651.  
  652.     except ValueError:
  653.         e = None
  654.         output.append('finally' in str(e))
  655.  
  656.  
  657. no_jump_out_of_finally_block.jump = (5, 1)
  658. no_jump_out_of_finally_block.output = [
  659.     3,
  660.     True]
  661.  
  662. def no_jump_to_non_integers(output):
  663.     
  664.     try:
  665.         output.append(2)
  666.     except ValueError:
  667.         e = None
  668.         output.append('integer' in str(e))
  669.  
  670.  
  671. no_jump_to_non_integers.jump = (2, 'Spam')
  672. no_jump_to_non_integers.output = [
  673.     True]
  674.  
  675. def no_jump_without_trace_function():
  676.     
  677.     try:
  678.         previous_frame = sys._getframe().f_back
  679.         previous_frame.f_lineno = previous_frame.f_lineno
  680.     except ValueError:
  681.         e = None
  682.         if 'trace' not in str(e):
  683.             raise 
  684.         
  685.     except:
  686.         'trace' not in str(e)
  687.  
  688.     raise RuntimeError, 'Trace-function-less jump failed to fail'
  689.  
  690.  
  691. class JumpTestCase(unittest.TestCase):
  692.     
  693.     def compare_jump_output(self, expected, received):
  694.         if received != expected:
  695.             self.fail("Outputs don't match:\n" + 'Expected: ' + repr(expected) + '\n' + 'Received: ' + repr(received))
  696.         
  697.  
  698.     
  699.     def run_test(self, func):
  700.         tracer = JumpTracer(func)
  701.         sys.settrace(tracer.trace)
  702.         output = []
  703.         func(output)
  704.         sys.settrace(None)
  705.         self.compare_jump_output(func.output, output)
  706.  
  707.     
  708.     def test_01_jump_simple_forwards(self):
  709.         self.run_test(jump_simple_forwards)
  710.  
  711.     
  712.     def test_02_jump_simple_backwards(self):
  713.         self.run_test(jump_simple_backwards)
  714.  
  715.     
  716.     def test_03_jump_out_of_block_forwards(self):
  717.         self.run_test(jump_out_of_block_forwards)
  718.  
  719.     
  720.     def test_04_jump_out_of_block_backwards(self):
  721.         self.run_test(jump_out_of_block_backwards)
  722.  
  723.     
  724.     def test_05_jump_to_codeless_line(self):
  725.         self.run_test(jump_to_codeless_line)
  726.  
  727.     
  728.     def test_06_jump_to_same_line(self):
  729.         self.run_test(jump_to_same_line)
  730.  
  731.     
  732.     def test_07_jump_in_nested_finally(self):
  733.         self.run_test(jump_in_nested_finally)
  734.  
  735.     
  736.     def test_08_no_jump_too_far_forwards(self):
  737.         self.run_test(no_jump_too_far_forwards)
  738.  
  739.     
  740.     def test_09_no_jump_too_far_backwards(self):
  741.         self.run_test(no_jump_too_far_backwards)
  742.  
  743.     
  744.     def test_10_no_jump_to_except_1(self):
  745.         self.run_test(no_jump_to_except_1)
  746.  
  747.     
  748.     def test_11_no_jump_to_except_2(self):
  749.         self.run_test(no_jump_to_except_2)
  750.  
  751.     
  752.     def test_12_no_jump_to_except_3(self):
  753.         self.run_test(no_jump_to_except_3)
  754.  
  755.     
  756.     def test_13_no_jump_to_except_4(self):
  757.         self.run_test(no_jump_to_except_4)
  758.  
  759.     
  760.     def test_14_no_jump_forwards_into_block(self):
  761.         self.run_test(no_jump_forwards_into_block)
  762.  
  763.     
  764.     def test_15_no_jump_backwards_into_block(self):
  765.         self.run_test(no_jump_backwards_into_block)
  766.  
  767.     
  768.     def test_16_no_jump_into_finally_block(self):
  769.         self.run_test(no_jump_into_finally_block)
  770.  
  771.     
  772.     def test_17_no_jump_out_of_finally_block(self):
  773.         self.run_test(no_jump_out_of_finally_block)
  774.  
  775.     
  776.     def test_18_no_jump_to_non_integers(self):
  777.         self.run_test(no_jump_to_non_integers)
  778.  
  779.     
  780.     def test_19_no_jump_without_trace_function(self):
  781.         no_jump_without_trace_function()
  782.  
  783.  
  784.  
  785. def test_main():
  786.     test_support.run_unittest(TraceTestCase, RaisingTraceFuncTestCase, JumpTestCase)
  787.  
  788. if __name__ == '__main__':
  789.     test_main()
  790.  
  791.